-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Turborepo 2.0 #8294
Turborepo 2.0 #8294
Conversation
Remove legacy filter flags now that they've been deprecated for quite awhile. Existing test suite passes. Updated tests that are still applicable and removed those that aren't.
### Description I messed up a resolving a merge conflict and didn't migrate some args that moved from `ExecutionArgs` to `RunArgs` in #7613 ### Testing Instructions Tests on CI pass Closes TURBO-2872
### Description With 2.0 we will now be requiring a `packageManager` field in `package.json` as this is a best practice and it helps us behave in a deterministic manner. The actual code change is very straightforward as we remove our package manager inference code and return an error if reading package manager from `package.json` fails. Most of the PR is updating tests. ### Testing Instructions Updated unit tests
### Description Previously we would infer scope for name filters if there was exactly one matching package. e.g. `turbo build --filter=ui` would run `@a/ui#build` if there was a `@a/ui` package in the workspace This is confusing and can result in accidentally breaking filters when a conflicting package is added e.g. adding `@b/ui` would cause *no* tasks to be run along with a zero exit code. ### Testing Instructions Updated unit test to verify inference no longer works and using the explicit package name still works.
### Description We replaced this with an option instead of an arg, but cleaning up here! ### Testing Instructions <!-- Give a quick description of steps to test your changes. -->
### Description We now will error if we encounter a package with a missing or empty package name. This is done in the graph validation step as opposed to construction since we don't want to impose this restriction on `@turbo/repository` users. ### Testing Instructions Added integration test
### Description This PR changes `--filter` so it now will error on certain malformed filters: - Name filters with no globs that don't match any packages e.g. `--filter=fo` instead of `--filter=foo` - Directory filters that reference a directory that doesn't exist: e.g. `--filter='./pakcages/*'` Each commit of the PR can be reviewed on it's own. ### Testing Instructions Updated existing unit tests. Added additional ones along with an integration test.
### Description Moves the file system cache to `.turbo` as discussed in #842. ### Testing Instructions Find your favorite Turborepo of choice and run a `turbo` command twice. You should miss cache on the first run and hit cache on the second. CLOSES TURBO-3130 --------- Co-authored-by: Chris Olszewski <chris.olszewski@vercel.com>
…on` (#8149) ### Description Changed `outputMode` to `outputLogs` in `turbo.json` to match the flag name. Also wrote a code mod to migrate `turbo.json` config automatically. ### Testing Instructions Existing tests are migrated. Also wrote tests for code mod
### Description Change `--only` so it behaves in a more sensible way. It still shouldn't be widely used, but now it at least does what it says it does. Previously `--only` would still follow package dependencies resulting additional tasks getting run that weren't expected. e.g. for task definition `"test": {"dependsOn": ["build", "^test"]}` and package `a` depending on `b`, then `turbo test --filter=a --only` would result in both `a#test` and `b#test` being run. With this PR now only `a#test` will be run. I changed the `--only` logic so now it will limit tasks in the graph to exactly those that are in the product of the packages implied by `--filter` and the tasks specified in the run args. This should make `--only` a far more sensible flag. ### Testing Instructions Added unit tests for testing the trimming of package dependencies and task id style dependencies e.g. `"dependsOn": ["a#test"]`
### Description Renaming the `pipeline` key to `tasks` in turbo.json. We went this key to better express what Turborepo does with the configuration that is provided in this key. We've seen with users that the term "pipeline" can be confusing for how `turbo` _really_ executes the task graph. In reality, the keys in the `pipeline` object are really the list of _tasks_ registered to `turbo` - so let's call it that. ### Non-goals This PR does not include update: - The examples in the repo - JS packages - `eslint-plugin-turbo` These updates will be needed in subsequent PRs. ### Testing Instructions Hopefully CI will do its job here - but, of course, would appreciate a review of my changes to make sure I'm not missing anything my untrained eye may be missing. CLOSES TURBO-3225
### Description If a user provides a glob that points to a directory e.g. `dist` or `dist/` then we will add a trailing double star so that the directory contents get captured instead of just the directory entry itself. ### Testing Instructions Added unit tests for adding doublestar Added integration test for verifying that `src/` and `dist` for task inputs/outputs get treated as `src/**` and `dist/**` respectively.
This PR removes `globalDotEnv`/`dotEnv` in favor of `globalDependencies` and `inputs` which is now fairly ergonomic to use with the addition of `$TURBO_DEFAULTS$`. This PR does *not* update the corresponding JS types. Updated existing integration tests
### Description Commandeered from #8151 Changes default env mode to strict and remove the "infer" option ### Testing Instructions Existing test suite (Currently some Windows integration tests are failing due to a missing env var, opening for review while I work on this) --------- Co-authored-by: nicholaslyang <nicholas.yang@vercel.com>
### Description Handle exclusions in `globalDeps` ### Testing Instructions Updated `global-deps.t` to test negative globs.
### Description TSIA This does not change Turbopack licensing ### Testing Instructions 👀
### Description Codemod to add missing name (or fix duplicates)
### Description Removes the `--ignore` flag as it's interaction with other `--filter` flags is hard to explain. If we want to bring it back, then it should be put it into a configuration file. I removed the command line flag and how it feeds into the package filtering, but left the underlying implementation of change detector as-is. This should make it easy to bring back this behavior via a configuration file. ### Testing Instructions Existing tests
### Description With this PR we will now factor in all root dependency changes. Not just external packages. Internal packages are handled by hashing all of the files contained in the package directory that aren't gitignore'd. This does have performance implications as we can end up globwalking these directories multiple times and hashing the files multiple times if they end up as task inputs. This will be addressed in a future PR. ### Testing Instructions Added integration test that displays new behavior
Co-authored-by: Turbobot <turbobot@vercel.com>
### Description Handshake logic works, we just need to bump the daemon version since it's independent(?) of the client version. Future work is to keep this constant in lockstep with our client version to help us avoid forgetting to bump this. ### Testing Instructions Verify that running binary in a repo with a running 1.x daemon will result in the daemon getting shut down and a new one being started: ``` 2024-05-28T10:17:35.750-0700 [DEBUG] turborepo_lib::daemon::connector: found pid: 6563 2024-05-28T10:17:35.750-0700 [DEBUG] turborepo_lib::daemon::connector: got daemon with pid: 6563 2024-05-28T10:17:35.766-0700 [DEBUG] turborepo_lib::daemon::connector: no pid found, starting daemon 2024-05-28T10:17:35.767-0700 [DEBUG] turborepo_lib::daemon::connector: got daemon with pid: 8593 ```
### Description In #8150 we removed the deprecated package manager argument in favor of the option, but we didn't remove the corresponding parameter from the actual main function. This lead to the options object getting passed as the package manager argument and then the options object being undefined. ### Testing Instructions Before <img width="939" alt="Screenshot 2024-05-28 at 8 43 23 AM" src="https://github.com/vercel/turbo/assets/4131117/6dcaa4a7-b0e0-4142-9854-95ed597d4eb5"> After <img width="1171" alt="Screenshot 2024-05-28 at 8 43 01 AM" src="https://github.com/vercel/turbo/assets/4131117/7ef11479-5895-4cd4-838c-a26dcaa0529a"> --------- Co-authored-by: Mehul Kar <mehul.kar@vercel.com> Co-authored-by: Thomas Knickman <tom.knickman@vercel.com> Co-authored-by: Anthony Shew <anthony.shew@vercel.com> Co-authored-by: Nicholas Yang <nicholas.yang@vercel.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Turbobot <turbobot@vercel.com>
### Description Made a nicer error message for having a `pipeline` key instead of `tasks`. ### Testing Instructions <!-- Give a quick description of steps to test your changes. --> --------- Co-authored-by: Anthony Shew <anthony.shew@vercel.com>
### Description TSIA ### Testing Instructions ~~Unit test update shows that default is now true~~ I forgot that these tests don't run in a TTY so they still won't have the UI enabled. Manual test that a fresh repo with no `experimentalUI` key in `turbo.json` will use the UI.
### Description Changing the `engines` field in the root `package.json` can affect the execution of tasks so it should affect the global cache. This PR adds the `engines` struct to the global cache key. ### Testing Instructions Added new integration test verifying that changing `engines` results in a cache miss.
### Description Updates various JS packages with the new `turbo.json` schema without breaking existing functionality. We introduce `SchemaV1` which has the old `pipeline` key. This is the type that the existing codemods target while future codemods will target `Schema`. `LegacySchema` is a compatibility type for codemods that support both. ### Testing Instructions Existing test suite passes. Added tests for `pipeline` -> `tasks` codemod
The latest updates on your projects. Learn more about Vercel for Git ↗︎
1 Ignored Deployment
|
🟢 Turbopack Benchmark CI successful 🟢Thanks |
✅ This change can build |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🥳
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 🥳
|
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | OpenSSF | |---|---|---|---|---| | [@turbo/gen](https://turbo.build/repo) ([source](https://github.com/vercel/turbo/tree/HEAD/packages/turbo-gen)) | devDependencies | major | [`1.13.4` -> `2.0.3`](https://renovatebot.com/diffs/npm/@turbo%2fgen/1.13.4/2.0.3) | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/vercel/turbo/badge)](https://securityscorecards.dev/viewer/?uri=github.com/vercel/turbo) | | [eslint-plugin-turbo](https://github.com/vercel/turbo) ([source](https://github.com/vercel/turbo/tree/HEAD/packages/eslint-plugin-turbo)) | devDependencies | major | [`1.13.4` -> `2.0.3`](https://renovatebot.com/diffs/npm/eslint-plugin-turbo/1.13.4/2.0.3) | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/vercel/turbo/badge)](https://securityscorecards.dev/viewer/?uri=github.com/vercel/turbo) | | [turbo](https://turbo.build/repo) ([source](https://github.com/vercel/turbo)) | devDependencies | major | [`1.13.4` -> `2.0.3`](https://renovatebot.com/diffs/npm/turbo/1.13.4/2.0.3) | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/vercel/turbo/badge)](https://securityscorecards.dev/viewer/?uri=github.com/vercel/turbo) | --- ### Release Notes <details> <summary>vercel/turbo (@​turbo/gen)</summary> ### [`v2.0.3`](https://github.com/vercel/turbo/releases/tag/v2.0.3): Turborepo v2.0.3 [Compare Source](https://github.com/vercel/turbo/compare/v2.0.2...v2.0.3) <!-- Release notes generated using configuration in .github/turborepo-release.yml at v2.0.3 --> #### What's Changed ##### turbo-ignore - fix(turbo-ignore): infer correct version of turbo for project by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8363](https://github.com/vercel/turbo/pull/8363) ##### Changelog - feat: warn when no local turbo found by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8356](https://github.com/vercel/turbo/pull/8356) **Full Changelog**: vercel/turborepo@v2.0.2...v2.0.3 ### [`v2.0.2`](https://github.com/vercel/turbo/releases/tag/v2.0.2): Turborepo v2.0.2 [Compare Source](https://github.com/vercel/turbo/compare/v2.0.1...v2.0.2) <!-- Release notes generated using configuration in .github/turborepo-release.yml at v2.0.2 --> #### What's Changed ##### [@​turbo/codemod](https://github.com/turbo/codemod) - fix(turborepo): factor in negated globs for workspace detection in codemods by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8331](https://github.com/vercel/turbo/pull/8331) ##### Examples - Bump examples to 2.0.0. by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8284](https://github.com/vercel/turbo/pull/8284) ##### Changelog - feat(ui): respect CI and NO_COLOR as overrides for TUI by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8335](https://github.com/vercel/turbo/pull/8335) - fix(ui): no longer attempt to read from stdin if non-tty by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8333](https://github.com/vercel/turbo/pull/8333) - fix: correctly serialize ui values by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8338](https://github.com/vercel/turbo/pull/8338) - fix: add NODE_OPTIONS to default pass through env vars by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8353](https://github.com/vercel/turbo/pull/8353) - chore: add additional env vars to default pass through by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8359](https://github.com/vercel/turbo/pull/8359) - fix(ui): disable TUI if log order is specified by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8343](https://github.com/vercel/turbo/pull/8343) #### New Contributors - [@​dvoytenko](https://github.com/dvoytenko) made their first contribution in [https://github.com/vercel/turbo/pull/8334](https://github.com/vercel/turbo/pull/8334) **Full Changelog**: vercel/turborepo@v2.0.1...v2.0.2 ### [`v2.0.1`](https://github.com/vercel/turbo/releases/tag/v2.0.1): Turborepo v2.0.1 [Compare Source](https://github.com/vercel/turbo/compare/v2.0.0...v2.0.1) <!-- Release notes generated using configuration in .github/turborepo-release.yml at v2.0.1 --> **Full Changelog**: vercel/turborepo@v2.0.0...v2.0.1 ### [`v2.0.0`](https://github.com/vercel/turbo/releases/tag/v2.0.0): Turborepo v2.0.0 [Compare Source](https://github.com/vercel/turbo/compare/v1.13.4...v2.0.0) <!-- Release notes generated using configuration in .github/turborepo-release.yml at v2.0.0 --> #### What's Changed Upgrade guide: https://turbo.build/repo/docs/crafting-your-repository/upgrading ##### [@​turbo/codemod](https://github.com/turbo/codemod) - feat(codemod): add logic for major version bump by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8260](https://github.com/vercel/turbo/pull/8260) - feat(codemod): place tasks last in turbo.json rewrites by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8268](https://github.com/vercel/turbo/pull/8268) - fix(codemod): support jsonc when parsing root turbo.json by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8279](https://github.com/vercel/turbo/pull/8279) - fix(codemod): respect --dry flag by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8280](https://github.com/vercel/turbo/pull/8280) - feat: change values of "ui" in turbo.json by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8289](https://github.com/vercel/turbo/pull/8289) - fix(codemod): support jsonc when parsing root turbo.json by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8279](https://github.com/vercel/turbo/pull/8279) - feat(codemod): place tasks last in turbo.json rewrites by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8268](https://github.com/vercel/turbo/pull/8268) - feat(codemod): add logic for major version bump by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8260](https://github.com/vercel/turbo/pull/8260) - feat(codemod): add missing package names by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/8186](https://github.com/vercel/turbo/pull/8186) ##### Changelog ##### Breaking - chore: remove legacy filter flags by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8294](https://github.com/vercel/turbo/pull/8294)/ - chore(turborepo): adjust error message for pipeline by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8264](https://github.com/vercel/turbo/pull/8264) - chore(turbo)!: remove check for legacy turbo config in package.json by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/8023](https://github.com/vercel/turbo/pull/8023) - chore(turbo)! hard error on env vars in task and global dependencies by [@​mehulkar](https://github.com/mehulkar) in [#​8026](https://github.com/vercel/turbo/issues/8026) - feat: require packageManager in package.json by [@​chris-olszewski](https://github.com/chris-olszewski) in [#​8017](https://github.com/vercel/turbo/issues/8017) - feat(filter): no longer infer scope in filters by [@​chris-olszewski](https://github.com/chris-olszewski) in [#​8137](https://github.com/vercel/turbo/issues/8137) - chore!(create-turbo): remove old pm arg by [@​tknickman](https://github.com/tknickman) in [#​8150](https://github.com/vercel/turbo/issues/8150) - feat: error on empty package name by [@​chris-olszewski](https://github.com/chris-olszewski) [#​8152](https://github.com/vercel/turbo/issues/8152) - feat(filter): error on invalid filters by [@​chris-olszewski](https://github.com/chris-olszewski) [#​8142](https://github.com/vercel/turbo/issues/8142) - Move fs cache location. by [@​anthonyshew](https://github.com/anthonyshew) in [#​8126](https://github.com/vercel/turbo/issues/8126) - refactor(turborepo): Rename outputMode to outputLogs in turbo.json by [@​NicholasLYang](https://github.com/NicholasLYang) in [#​8149](https://github.com/vercel/turbo/issues/8149) - feat: --only now applies to package dependencies by [@​chris-olszewski](https://github.com/chris-olszewski) in [#​8163](https://github.com/vercel/turbo/issues/8163) - Rename pipeline to tasks. by [@​anthonyshew](https://github.com/anthonyshew) in [#​8157](https://github.com/vercel/turbo/issues/8157) - feat: add doublestar to exact dir paths by [@​chris-olszewski](https://github.com/chris-olszewski) in [#​8180](https://github.com/vercel/turbo/issues/8180) - chore: remove globalDotEnv and dotEnv fields by [@​chris-olszewski](https://github.com/chris-olszewski) in [#​8181](https://github.com/vercel/turbo/issues/8181) - chore: make env mode strict by default by [@​chris-olszewski](https://github.com/chris-olszewski) in [#​8182](https://github.com/vercel/turbo/issues/8182) ##### Other - feat: allow for negative globs in globalDeps by [@​chris-olszewski](https://github.com/chris-olszewski) in [#​8190](https://github.com/vercel/turbo/issues/8190) - chore: change turborepo licenses to MIT by [@​chris-olszewski](https://github.com/chris-olszewski) in [#​8197](https://github.com/vercel/turbo/issues/8197) - feat: all dependencies of root package contribute to global hash by [@​chris-olszewski](https://github.com/chris-olszewski) in [#​8202](https://github.com/vercel/turbo/issues/8202) - fix(turborepo): non-determinism with root internal deps hash. by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8277](https://github.com/vercel/turbo/pull/8277) - fix: update integration test to expect correct output by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8285](https://github.com/vercel/turbo/pull/8285) - chore: remove cpuprofile flag by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8282](https://github.com/vercel/turbo/pull/8282) - fix(ui): disable UI on all dry runs by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8269](https://github.com/vercel/turbo/pull/8269) - fix(turborepo): stderr log by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8267](https://github.com/vercel/turbo/pull/8267) - chore(turborepo): adjust error message for pipeline by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8264](https://github.com/vercel/turbo/pull/8264) - fix(ui): ensure prelude gets printed before ui starts by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8265](https://github.com/vercel/turbo/pull/8265) - chore([@​turbo/benchmark](https://github.com/turbo/benchmark)): fix lint warnings by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/8233](https://github.com/vercel/turbo/pull/8233) - chore(turborepo): Feature flagged off file hashing by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8229](https://github.com/vercel/turbo/pull/8229) - chore: downgrade curl to fix Windows rust tests by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8242](https://github.com/vercel/turbo/pull/8242) - fix(turborepo): Remove optional git locks by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8244](https://github.com/vercel/turbo/pull/8244) - fix(turborepo): Optional lock with env var by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8247](https://github.com/vercel/turbo/pull/8247) - add two retry strategies to allow requests to timeout gracefully by [@​arlyon](https://github.com/arlyon) in [https://github.com/vercel/turbo/pull/8080](https://github.com/vercel/turbo/pull/8080) - add support for upload speed / remaining in the cache upload step by [@​arlyon](https://github.com/arlyon) in [https://github.com/vercel/turbo/pull/8081](https://github.com/vercel/turbo/pull/8081) - chore: remove --ignore flag by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8201](https://github.com/vercel/turbo/pull/8201) - feat: factor engines into global cache key by [@​chris-olszewski](https://github.com/chris-olszewski) in [#​8173](https://github.com/vercel/turbo/issues/8173) **Full Changelog**: vercel/turborepo@v1.13.4...v2.0.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/weareinreach/InReach). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zOTMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjM5My4wIiwidGFyZ2V0QnJhbmNoIjoiZGV2IiwibGFiZWxzIjpbImF1dG9tZXJnZSIsImRlcGVuZGVuY2llcyIsImtvZGlhazogbWVyZ2UubWV0aG9kID0gJ3NxdWFzaCciXX0=--> --------- Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Joe Karow <58997957+JoeKarow@users.noreply.github.com>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [turbo](https://turbo.build/repo) ([source](https://github.com/vercel/turbo)) | [`^1.13.4` -> `^2.0.4`](https://renovatebot.com/diffs/npm/turbo/1.13.4/2.0.4) | [![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/2.0.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/2.0.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.13.4/2.0.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.13.4/2.0.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>vercel/turbo (turbo)</summary> ### [`v2.0.4`](https://github.com/vercel/turbo/releases/tag/v2.0.4): Turborepo v2.0.4 [Compare Source](https://github.com/vercel/turbo/compare/v2.0.3...v2.0.4) <!-- Release notes generated using configuration in .github/turborepo-release.yml at v2.0.4 --> #### What's Changed ##### create-turbo - Update `create-turbo` to use carat versions. by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8448](https://github.com/vercel/turbo/pull/8448) ##### [@​turbo/codemod](https://github.com/turbo/codemod) - chore: bump timeout for migration by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8463](https://github.com/vercel/turbo/pull/8463) - fix([@​turbo/codemode](https://github.com/turbo/codemode)): no-op when turbo.json already contains tasks key by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/8471](https://github.com/vercel/turbo/pull/8471) ##### Examples - Give examples carat versions. by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8382](https://github.com/vercel/turbo/pull/8382) - Fix apk order in example. by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8392](https://github.com/vercel/turbo/pull/8392) - Fix `eslint-config-turbo` configuration in examples. by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8405](https://github.com/vercel/turbo/pull/8405) - Remove root eslintrc from basic example. by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8423](https://github.com/vercel/turbo/pull/8423) - Consistent Node.js version in Changesets action. by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8441](https://github.com/vercel/turbo/pull/8441) - Remove global dep from basic example. by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8442](https://github.com/vercel/turbo/pull/8442) ##### Changelog - fix(filter): account for root internal dependencies in git based filter by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8364](https://github.com/vercel/turbo/pull/8364) - Warn instead of print when no locally installed version. by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8384](https://github.com/vercel/turbo/pull/8384) - Add CI to default passthroughs. by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8393](https://github.com/vercel/turbo/pull/8393) - feat(shim): invoke local turbo version via npx if not installed by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8385](https://github.com/vercel/turbo/pull/8385) - docs: update links to logs in turbo types by [@​boyum](https://github.com/boyum) in [https://github.com/vercel/turbo/pull/8403](https://github.com/vercel/turbo/pull/8403) - fix: added `LD_LIBRARY_PATH` to default forwarded env vars by [@​GauBen](https://github.com/GauBen) in [https://github.com/vercel/turbo/pull/8412](https://github.com/vercel/turbo/pull/8412) - chore(turborepo): remove unused code by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8428](https://github.com/vercel/turbo/pull/8428) - fix: disable panic handler in ci by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8436](https://github.com/vercel/turbo/pull/8436) - fix: remove inferring turbo version from package.json or turbo.json by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8437](https://github.com/vercel/turbo/pull/8437) - fix(turborepo): avoid starting ui on too small terminals by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8457](https://github.com/vercel/turbo/pull/8457) - chore(shim): make dynamic downloads opt in by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8458](https://github.com/vercel/turbo/pull/8458) - fix(shim): avoid panic if user has malformed lockfile by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8461](https://github.com/vercel/turbo/pull/8461) - fix(ui): pass through terminal env vars to appease chalk by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8468](https://github.com/vercel/turbo/pull/8468) #### New Contributors - [@​boyum](https://github.com/boyum) made their first contribution in [https://github.com/vercel/turbo/pull/8403](https://github.com/vercel/turbo/pull/8403) - [@​GauBen](https://github.com/GauBen) made their first contribution in [https://github.com/vercel/turbo/pull/8412](https://github.com/vercel/turbo/pull/8412) - [@​sethidden](https://github.com/sethidden) made their first contribution in [https://github.com/vercel/turbo/pull/8450](https://github.com/vercel/turbo/pull/8450) **Full Changelog**: vercel/turborepo@v2.0.3...v2.0.4 ### [`v2.0.3`](https://github.com/vercel/turbo/releases/tag/v2.0.3): Turborepo v2.0.3 [Compare Source](https://github.com/vercel/turbo/compare/v2.0.2...v2.0.3) <!-- Release notes generated using configuration in .github/turborepo-release.yml at v2.0.3 --> #### What's Changed ##### turbo-ignore - fix(turbo-ignore): infer correct version of turbo for project by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8363](https://github.com/vercel/turbo/pull/8363) ##### Changelog - feat: warn when no local turbo found by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8356](https://github.com/vercel/turbo/pull/8356) **Full Changelog**: vercel/turborepo@v2.0.2...v2.0.3 ### [`v2.0.2`](https://github.com/vercel/turbo/releases/tag/v2.0.2): Turborepo v2.0.2 [Compare Source](https://github.com/vercel/turbo/compare/v2.0.1...v2.0.2) <!-- Release notes generated using configuration in .github/turborepo-release.yml at v2.0.2 --> #### What's Changed ##### [@​turbo/codemod](https://github.com/turbo/codemod) - fix(turborepo): factor in negated globs for workspace detection in codemods by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8331](https://github.com/vercel/turbo/pull/8331) ##### Examples - Bump examples to 2.0.0. by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8284](https://github.com/vercel/turbo/pull/8284) ##### Changelog - feat(ui): respect CI and NO_COLOR as overrides for TUI by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8335](https://github.com/vercel/turbo/pull/8335) - fix(ui): no longer attempt to read from stdin if non-tty by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8333](https://github.com/vercel/turbo/pull/8333) - fix: correctly serialize ui values by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8338](https://github.com/vercel/turbo/pull/8338) - fix: add NODE_OPTIONS to default pass through env vars by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8353](https://github.com/vercel/turbo/pull/8353) - chore: add additional env vars to default pass through by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8359](https://github.com/vercel/turbo/pull/8359) - fix(ui): disable TUI if log order is specified by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8343](https://github.com/vercel/turbo/pull/8343) #### New Contributors - [@​dvoytenko](https://github.com/dvoytenko) made their first contribution in [https://github.com/vercel/turbo/pull/8334](https://github.com/vercel/turbo/pull/8334) **Full Changelog**: vercel/turborepo@v2.0.1...v2.0.2 ### [`v2.0.1`](https://github.com/vercel/turbo/releases/tag/v2.0.1): Turborepo v2.0.1 [Compare Source](https://github.com/vercel/turbo/compare/v2.0.0...v2.0.1) <!-- Release notes generated using configuration in .github/turborepo-release.yml at v2.0.1 --> **Full Changelog**: vercel/turborepo@v2.0.0...v2.0.1 ### [`v2.0.0`](https://github.com/vercel/turbo/releases/tag/v2.0.0): Turborepo v2.0.0 [Compare Source](https://github.com/vercel/turbo/compare/v1.13.4...v2.0.0) <!-- Release notes generated using configuration in .github/turborepo-release.yml at v2.0.0 --> #### What's Changed Upgrade guide: https://turbo.build/repo/docs/crafting-your-repository/upgrading ##### [@​turbo/codemod](https://github.com/turbo/codemod) - feat(codemod): add logic for major version bump by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8260](https://github.com/vercel/turbo/pull/8260) - feat(codemod): place tasks last in turbo.json rewrites by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8268](https://github.com/vercel/turbo/pull/8268) - fix(codemod): support jsonc when parsing root turbo.json by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8279](https://github.com/vercel/turbo/pull/8279) - fix(codemod): respect --dry flag by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8280](https://github.com/vercel/turbo/pull/8280) - feat: change values of "ui" in turbo.json by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8289](https://github.com/vercel/turbo/pull/8289) - fix(codemod): support jsonc when parsing root turbo.json by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8279](https://github.com/vercel/turbo/pull/8279) - feat(codemod): place tasks last in turbo.json rewrites by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8268](https://github.com/vercel/turbo/pull/8268) - feat(codemod): add logic for major version bump by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8260](https://github.com/vercel/turbo/pull/8260) - feat(codemod): add missing package names by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/8186](https://github.com/vercel/turbo/pull/8186) ##### Changelog ##### Breaking - chore: remove legacy filter flags by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8294](https://github.com/vercel/turbo/pull/8294)/ - chore(turborepo): adjust error message for pipeline by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8264](https://github.com/vercel/turbo/pull/8264) - chore(turbo)!: remove check for legacy turbo config in package.json by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/8023](https://github.com/vercel/turbo/pull/8023) - chore(turbo)! hard error on env vars in task and global dependencies by [@​mehulkar](https://github.com/mehulkar) in [#​8026](https://github.com/vercel/turbo/issues/8026) - feat: require packageManager in package.json by [@​chris-olszewski](https://github.com/chris-olszewski) in [#​8017](https://github.com/vercel/turbo/issues/8017) - feat(filter): no longer infer scope in filters by [@​chris-olszewski](https://github.com/chris-olszewski) in [#​8137](https://github.com/vercel/turbo/issues/8137) - chore!(create-turbo): remove old pm arg by [@​tknickman](https://github.com/tknickman) in [#​8150](https://github.com/vercel/turbo/issues/8150) - feat: error on empty package name by [@​chris-olszewski](https://github.com/chris-olszewski) [#​8152](https://github.com/vercel/turbo/issues/8152) - feat(filter): error on invalid filters by [@​chris-olszewski](https://github.com/chris-olszewski) [#​8142](https://github.com/vercel/turbo/issues/8142) - Move fs cache location. by [@​anthonyshew](https://github.com/anthonyshew) in [#​8126](https://github.com/vercel/turbo/issues/8126) - refactor(turborepo): Rename outputMode to outputLogs in turbo.json by [@​NicholasLYang](https://github.com/NicholasLYang) in [#​8149](https://github.com/vercel/turbo/issues/8149) - feat: --only now applies to package dependencies by [@​chris-olszewski](https://github.com/chris-olszewski) in [#​8163](https://github.com/vercel/turbo/issues/8163) - Rename pipeline to tasks. by [@​anthonyshew](https://github.com/anthonyshew) in [#​8157](https://github.com/vercel/turbo/issues/8157) - feat: add doublestar to exact dir paths by [@​chris-olszewski](https://github.com/chris-olszewski) in [#​8180](https://github.com/vercel/turbo/issues/8180) - chore: remove globalDotEnv and dotEnv fields by [@​chris-olszewski](https://github.com/chris-olszewski) in [#​8181](https://github.com/vercel/turbo/issues/8181) - chore: make env mode strict by default by [@​chris-olszewski](https://github.com/chris-olszewski) in [#​8182](https://github.com/vercel/turbo/issues/8182) ##### Other - feat: allow for negative globs in globalDeps by [@​chris-olszewski](https://github.com/chris-olszewski) in [#​8190](https://github.com/vercel/turbo/issues/8190) - chore: change turborepo licenses to MIT by [@​chris-olszewski](https://github.com/chris-olszewski) in [#​8197](https://github.com/vercel/turbo/issues/8197) - feat: all dependencies of root package contribute to global hash by [@​chris-olszewski](https://github.com/chris-olszewski) in [#​8202](https://github.com/vercel/turbo/issues/8202) - fix(turborepo): non-determinism with root internal deps hash. by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8277](https://github.com/vercel/turbo/pull/8277) - fix: update integration test to expect correct output by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8285](https://github.com/vercel/turbo/pull/8285) - chore: remove cpuprofile flag by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8282](https://github.com/vercel/turbo/pull/8282) - fix(ui): disable UI on all dry runs by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8269](https://github.com/vercel/turbo/pull/8269) - fix(turborepo): stderr log by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8267](https://github.com/vercel/turbo/pull/8267) - chore(turborepo): adjust error message for pipeline by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8264](https://github.com/vercel/turbo/pull/8264) - fix(ui): ensure prelude gets printed before ui starts by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8265](https://github.com/vercel/turbo/pull/8265) - chore([@​turbo/benchmark](https://github.com/turbo/benchmark)): fix lint warnings by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/8233](https://github.com/vercel/turbo/pull/8233) - chore(turborepo): Feature flagged off file hashing by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8229](https://github.com/vercel/turbo/pull/8229) - chore: downgrade curl to fix Windows rust tests by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8242](https://github.com/vercel/turbo/pull/8242) - fix(turborepo): Remove optional git locks by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8244](https://github.com/vercel/turbo/pull/8244) - fix(turborepo): Optional lock with env var by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8247](https://github.com/vercel/turbo/pull/8247) - add two retry strategies to allow requests to timeout gracefully by [@​arlyon](https://github.com/arlyon) in [https://github.com/vercel/turbo/pull/8080](https://github.com/vercel/turbo/pull/8080) - add support for upload speed / remaining in the cache upload step by [@​arlyon](https://github.com/arlyon) in [https://github.com/vercel/turbo/pull/8081](https://github.com/vercel/turbo/pull/8081) - chore: remove --ignore flag by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8201](https://github.com/vercel/turbo/pull/8201) - feat: factor engines into global cache key by [@​chris-olszewski](https://github.com/chris-olszewski) in [#​8173](https://github.com/vercel/turbo/issues/8173) **Full Changelog**: vercel/turborepo@v1.13.4...v2.0.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/fwouts/previewjs). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zOTMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjM5My4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: François Wouts <f@zenc.io>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [turbo-ignore](https://turbo.build/repo) ([source](https://github.com/vercel/turborepo/tree/HEAD/packages/turbo-ignore)) | [`^1.10.16` -> `^2.0.0`](https://renovatebot.com/diffs/npm/turbo-ignore/1.11.3/2.0.14) | [![age](https://developer.mend.io/api/mc/badges/age/npm/turbo-ignore/2.0.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo-ignore/2.0.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo-ignore/1.11.3/2.0.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo-ignore/1.11.3/2.0.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>vercel/turborepo (turbo-ignore)</summary> ### [`v2.0.14`](https://github.com/vercel/turborepo/releases/tag/v2.0.14): Turborepo v2.0.14 [Compare Source](https://github.com/vercel/turborepo/compare/v2.0.13...v2.0.14) <!-- Release notes generated using configuration in .github/turborepo-release.yml at v2.0.14 --> #### What's Changed ##### Changelog - feat(tui): resize terminal pane by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/8996](https://github.com/vercel/turborepo/pull/8996) - makes [@​defaultValue](https://github.com/defaultValue) usages consistent (and correct) by [@​dimitropoulos](https://github.com/dimitropoulos) in [https://github.com/vercel/turborepo/pull/9012](https://github.com/vercel/turborepo/pull/9012) - fix(create-turbo): correct path usage by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turborepo/pull/9014](https://github.com/vercel/turborepo/pull/9014) **Full Changelog**: https://github.com/vercel/turborepo/compare/v2.0.13...v2.0.14 ### [`v2.0.13`](https://github.com/vercel/turborepo/releases/tag/v2.0.13): Turborepo v2.0.13 [Compare Source](https://github.com/vercel/turborepo/compare/v2.0.12...v2.0.13) <!-- Release notes generated using configuration in .github/turborepo-release.yml at v2.0.13 --> #### What's Changed ##### Docs - (docs): Improve clarity for watch. by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8957](https://github.com/vercel/turbo/pull/8957) - Migrate to Storybook 8.2.6 by [@​joeblas](https://github.com/joeblas) in [https://github.com/vercel/turbo/pull/8835](https://github.com/vercel/turbo/pull/8835) - chore(repo): update readme and links by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/8965](https://github.com/vercel/turbo/pull/8965) - docs: add release flag to cargo build by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8992](https://github.com/vercel/turbo/pull/8992) ##### Changelog - chore: improve error message for package graph construction by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8966](https://github.com/vercel/turbo/pull/8966) - Log changed package names instead of full struct by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/8971](https://github.com/vercel/turbo/pull/8971) - refactor: renamed UI to ColorConfig by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8962](https://github.com/vercel/turbo/pull/8962) - fix(watch): display which tasks will be rerun by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8960](https://github.com/vercel/turbo/pull/8960) - fix: print application errors to stderr instead of stdout by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8969](https://github.com/vercel/turbo/pull/8969) - feat: add `--affected` to `turbo ls` by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8970](https://github.com/vercel/turbo/pull/8970) - chore(change_mapper): add debug log explaining why package is root dep by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8976](https://github.com/vercel/turbo/pull/8976) - chore: remove aliases by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8980](https://github.com/vercel/turbo/pull/8980) - enables test_gh\_8599 test by [@​dimitropoulos](https://github.com/dimitropoulos) in [https://github.com/vercel/turbo/pull/8984](https://github.com/vercel/turbo/pull/8984) - removes GOROOT from globalPassThroughEnv for local dev by [@​dimitropoulos](https://github.com/dimitropoulos) in [https://github.com/vercel/turbo/pull/8981](https://github.com/vercel/turbo/pull/8981) - simplify Prysk commands by [@​dimitropoulos](https://github.com/dimitropoulos) in [https://github.com/vercel/turbo/pull/8982](https://github.com/vercel/turbo/pull/8982) - fix(create-turbo): support renamed repositories by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/8993](https://github.com/vercel/turbo/pull/8993) - cacheDir for env, config, and flag by [@​dimitropoulos](https://github.com/dimitropoulos) in [https://github.com/vercel/turbo/pull/8947](https://github.com/vercel/turbo/pull/8947) - Update Socket config by [@​jackwilson323](https://github.com/jackwilson323) in [https://github.com/vercel/turbo/pull/9005](https://github.com/vercel/turbo/pull/9005) #### New Contributors - [@​joeblas](https://github.com/joeblas) made their first contribution in [https://github.com/vercel/turbo/pull/8835](https://github.com/vercel/turbo/pull/8835) - [@​konomae](https://github.com/konomae) made their first contribution in [https://github.com/vercel/turbo/pull/8908](https://github.com/vercel/turbo/pull/8908) **Full Changelog**: https://github.com/vercel/turbo/compare/v2.0.12...v2.0.13 ### [`v2.0.12`](https://github.com/vercel/turborepo/releases/tag/v2.0.12): Turborepo v2.0.12 [Compare Source](https://github.com/vercel/turborepo/compare/v2.0.11...v2.0.12) <!-- Release notes generated using configuration in .github/turborepo-release.yml at v2.0.12 --> #### What's Changed ##### Docs - docs: Re-mention passthroughs in CI compatibility section. by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8939](https://github.com/vercel/turbo/pull/8939) - docs: Correct json comma syntax in sample code by [@​huyb1991](https://github.com/huyb1991) in [https://github.com/vercel/turbo/pull/8949](https://github.com/vercel/turbo/pull/8949) ##### [@​turbo/repository](https://github.com/turbo/repository) - feat(turborepo): log reason why all packages were considered changed by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/8872](https://github.com/vercel/turbo/pull/8872) ##### Changelog - fix(watch): properly shut down persistent tasks by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8854](https://github.com/vercel/turbo/pull/8854) - add envMode to `turbo.json` by [@​dimitropoulos](https://github.com/dimitropoulos) in [https://github.com/vercel/turbo/pull/8757](https://github.com/vercel/turbo/pull/8757) - chore(codeowners): remove turbopack by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/8930](https://github.com/vercel/turbo/pull/8930) - chore(turbo): simplify contributing by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/8931](https://github.com/vercel/turbo/pull/8931) - removes nextest config related to turbopack by [@​dimitropoulos](https://github.com/dimitropoulos) in [https://github.com/vercel/turbo/pull/8925](https://github.com/vercel/turbo/pull/8925) - chore: improve -vv logging by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/8910](https://github.com/vercel/turbo/pull/8910) - refactor(turborepo): change the ui config to use an enum by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8919](https://github.com/vercel/turbo/pull/8919) - remove / move unused or test crates by [@​arlyon](https://github.com/arlyon) in [https://github.com/vercel/turbo/pull/8929](https://github.com/vercel/turbo/pull/8929) - fix(tui): allow for TUI use when hooked up to tty by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8942](https://github.com/vercel/turbo/pull/8942) - feat(telemetry): reduce data volume by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/8944](https://github.com/vercel/turbo/pull/8944) - feat(owners): remove telem special case by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/8945](https://github.com/vercel/turbo/pull/8945) - feat(turborepo): implement --affected flag by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8884](https://github.com/vercel/turbo/pull/8884) #### New Contributors - [@​Marukome0743](https://github.com/Marukome0743) made their first contribution in [https://github.com/vercel/turbo/pull/8928](https://github.com/vercel/turbo/pull/8928) - [@​fredericobreno](https://github.com/fredericobreno) made their first contribution in [https://github.com/vercel/turbo/pull/8911](https://github.com/vercel/turbo/pull/8911) - [@​huyb1991](https://github.com/huyb1991) made their first contribution in [https://github.com/vercel/turbo/pull/8949](https://github.com/vercel/turbo/pull/8949) **Full Changelog**: https://github.com/vercel/turbo/compare/v2.0.11...v2.0.12 ### [`v2.0.11`](https://github.com/vercel/turborepo/releases/tag/v2.0.11): Turborepo v2.0.11 [Compare Source](https://github.com/vercel/turborepo/compare/v2.0.10...v2.0.11) <!-- Release notes generated using configuration in .github/turborepo-release.yml at v2.0.11 --> #### What's Changed ##### Changelog - fix(pty): disable echoctl for child processes by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8892](https://github.com/vercel/turbo/pull/8892) #### New Contributors - [@​Zaid-maker](https://github.com/Zaid-maker) made their first contribution in [https://github.com/vercel/turbo/pull/8090](https://github.com/vercel/turbo/pull/8090) **Full Changelog**: https://github.com/vercel/turbo/compare/v2.0.10...v2.0.11 ### [`v2.0.10`](https://github.com/vercel/turborepo/releases/tag/v2.0.10): Turborepo v2.0.10 [Compare Source](https://github.com/vercel/turborepo/compare/v2.0.9...v2.0.10) <!-- Release notes generated using configuration in .github/turborepo-release.yml at v2.0.10 --> #### What's Changed ##### Examples - chore: dedupe link component in kitchen sink by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8813](https://github.com/vercel/turbo/pull/8813) - feat(examples): add example-with-typeorm by [@​cgoinglove](https://github.com/cgoinglove) in [https://github.com/vercel/turbo/pull/8143](https://github.com/vercel/turbo/pull/8143) ##### Changelog - feat(turbo): add TMP and TEMP variables to pass through by [@​cahilfoley](https://github.com/cahilfoley) in [https://github.com/vercel/turbo/pull/8803](https://github.com/vercel/turbo/pull/8803) - chore: add trace level logging to process management by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8822](https://github.com/vercel/turbo/pull/8822) - chore(infer): add test for current behavior by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8825](https://github.com/vercel/turbo/pull/8825) - fix: close stdin for non-interactive tasks by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8838](https://github.com/vercel/turbo/pull/8838) - chore(turborepo): print the turbo version on start up by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8841](https://github.com/vercel/turbo/pull/8841) - chore(auth): catch forbidden cache access error by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8853](https://github.com/vercel/turbo/pull/8853) - chore(telemetry): remove unused codepath field by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/8855](https://github.com/vercel/turbo/pull/8855) - chore(schema): update schema with dangerouslyDisablePackageManagerCheck by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8856](https://github.com/vercel/turbo/pull/8856) - fix(turborepo): task table width bug by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8868](https://github.com/vercel/turbo/pull/8868) - feat(turborepo): added specific symbol for cache hit by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8869](https://github.com/vercel/turbo/pull/8869) - feat(tui): terminal pane mouse copying by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8713](https://github.com/vercel/turbo/pull/8713) - chore(filter): add additional logs for scm based filters by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8850](https://github.com/vercel/turbo/pull/8850) - chore:(logging): improve debug logs with -vv by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/8867](https://github.com/vercel/turbo/pull/8867) - (chore): Make FS error more clear. by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8881](https://github.com/vercel/turbo/pull/8881) - adds daemon flag for env var and turbo.json by [@​dimitropoulos](https://github.com/dimitropoulos) in [https://github.com/vercel/turbo/pull/8728](https://github.com/vercel/turbo/pull/8728) - fix(windows): keep stdin open for conpty processes by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8885](https://github.com/vercel/turbo/pull/8885) #### New Contributors - [@​cahilfoley](https://github.com/cahilfoley) made their first contribution in [https://github.com/vercel/turbo/pull/8803](https://github.com/vercel/turbo/pull/8803) - [@​busybox11](https://github.com/busybox11) made their first contribution in [https://github.com/vercel/turbo/pull/8799](https://github.com/vercel/turbo/pull/8799) - [@​samydoesit](https://github.com/samydoesit) made their first contribution in [https://github.com/vercel/turbo/pull/8725](https://github.com/vercel/turbo/pull/8725) - [@​gdarchen](https://github.com/gdarchen) made their first contribution in [https://github.com/vercel/turbo/pull/8830](https://github.com/vercel/turbo/pull/8830) - [@​cgoinglove](https://github.com/cgoinglove) made their first contribution in [https://github.com/vercel/turbo/pull/8143](https://github.com/vercel/turbo/pull/8143) **Full Changelog**: https://github.com/vercel/turbo/compare/v2.0.9...v2.0.10 ### [`v2.0.9`](https://github.com/vercel/turborepo/releases/tag/v2.0.9): Turborepo v2.0.9 [Compare Source](https://github.com/vercel/turborepo/compare/v2.0.8...v2.0.9) <!-- Release notes generated using configuration in .github/turborepo-release.yml at v2.0.9 --> #### What's Changed ##### Examples - feat(examples): bump turbo for svelte by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/8796](https://github.com/vercel/turbo/pull/8796) ##### Changelog - feature(turborepo): fancy package.json errors by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8299](https://github.com/vercel/turbo/pull/8299) - feat(turborepo): turbo ls with filter by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8779](https://github.com/vercel/turbo/pull/8779) **Full Changelog**: https://github.com/vercel/turbo/compare/v2.0.8...v2.0.9 ### [`v2.0.8`](https://github.com/vercel/turborepo/releases/tag/v2.0.8): Turborepo v2.0.8 [Compare Source](https://github.com/vercel/turborepo/compare/v2.0.7...v2.0.8) <!-- Release notes generated using configuration in .github/turborepo-release.yml at v2.0.8 --> #### What's Changed ##### Examples - Update basic example. by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8784](https://github.com/vercel/turbo/pull/8784) ##### Changelog - chore(turborepo): refine package.json parse error by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8753](https://github.com/vercel/turbo/pull/8753) - feat(turbo): add VERCEL to pass through by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/8794](https://github.com/vercel/turbo/pull/8794) **Full Changelog**: https://github.com/vercel/turbo/compare/v2.0.7...v2.0.8 ### [`v2.0.7`](https://github.com/vercel/turborepo/releases/tag/v2.0.7): Turborepo v2.0.7 [Compare Source](https://github.com/vercel/turborepo/compare/v2.0.6...v2.0.7) <!-- Release notes generated using configuration in .github/turborepo-release.yml at v2.0.7 --> #### What's Changed ##### Examples - Fix lockfile in kitchen-sink. by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8666](https://github.com/vercel/turbo/pull/8666) - fix(examples): correct next.config extension in tsconfig by [@​moolcoov](https://github.com/moolcoov) in [https://github.com/vercel/turbo/pull/8638](https://github.com/vercel/turbo/pull/8638) - feat(examples): add `with-nestjs` example by [@​Neosoulink](https://github.com/Neosoulink) in [https://github.com/vercel/turbo/pull/8162](https://github.com/vercel/turbo/pull/8162) ##### Changelog - (refactor)ui: Refactoring/simplifying TUI state by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8650](https://github.com/vercel/turbo/pull/8650) - fix: add more windows vars to default pass through env by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8615](https://github.com/vercel/turbo/pull/8615) - Add Docker to default passthroughs list. by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8690](https://github.com/vercel/turbo/pull/8690) - Add VSCode's debugger variables to default passthroughs. by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8689](https://github.com/vercel/turbo/pull/8689) - update env_wildcards for SvelteKit by [@​jacksteamdev](https://github.com/jacksteamdev) in [https://github.com/vercel/turbo/pull/8685](https://github.com/vercel/turbo/pull/8685) - fix constant width for checkmark by [@​dimitropoulos](https://github.com/dimitropoulos) in [https://github.com/vercel/turbo/pull/8702](https://github.com/vercel/turbo/pull/8702) - fix(ui): respect `--output-logs` and `outputLogs` for persisting logs after TUI exits by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8612](https://github.com/vercel/turbo/pull/8612) - fix(ui): only start ui if there are tasks to run by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8703](https://github.com/vercel/turbo/pull/8703) - chore(ui): add tracing to all tui operations by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8704](https://github.com/vercel/turbo/pull/8704) - adds CLI flag for controlling tui/stream by [@​dimitropoulos](https://github.com/dimitropoulos) in [https://github.com/vercel/turbo/pull/8714](https://github.com/vercel/turbo/pull/8714) - feat: allow opting out of required package manager by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8738](https://github.com/vercel/turbo/pull/8738) - upgrade deps to avoid conflict with next.js by [@​sokra](https://github.com/sokra) in [https://github.com/vercel/turbo/pull/8750](https://github.com/vercel/turbo/pull/8750) - refactor(turborepo): derive `Opts` from `Config` by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8759](https://github.com/vercel/turbo/pull/8759) #### New Contributors - [@​dimitropoulos](https://github.com/dimitropoulos) made their first contribution in [https://github.com/vercel/turbo/pull/8674](https://github.com/vercel/turbo/pull/8674) - [@​pathliving](https://github.com/pathliving) made their first contribution in [https://github.com/vercel/turbo/pull/8675](https://github.com/vercel/turbo/pull/8675) - [@​UNRULYEON](https://github.com/UNRULYEON) made their first contribution in [https://github.com/vercel/turbo/pull/8679](https://github.com/vercel/turbo/pull/8679) - [@​LaPulgaaa](https://github.com/LaPulgaaa) made their first contribution in [https://github.com/vercel/turbo/pull/8683](https://github.com/vercel/turbo/pull/8683) - [@​jacksteamdev](https://github.com/jacksteamdev) made their first contribution in [https://github.com/vercel/turbo/pull/8685](https://github.com/vercel/turbo/pull/8685) - [@​ony3000](https://github.com/ony3000) made their first contribution in [https://github.com/vercel/turbo/pull/8642](https://github.com/vercel/turbo/pull/8642) - [@​moolcoov](https://github.com/moolcoov) made their first contribution in [https://github.com/vercel/turbo/pull/8638](https://github.com/vercel/turbo/pull/8638) - [@​pkellner](https://github.com/pkellner) made their first contribution in [https://github.com/vercel/turbo/pull/8669](https://github.com/vercel/turbo/pull/8669) - [@​vinnymac](https://github.com/vinnymac) made their first contribution in [https://github.com/vercel/turbo/pull/8637](https://github.com/vercel/turbo/pull/8637) - [@​torresgol10](https://github.com/torresgol10) made their first contribution in [https://github.com/vercel/turbo/pull/8719](https://github.com/vercel/turbo/pull/8719) - [@​baileywickham](https://github.com/baileywickham) made their first contribution in [https://github.com/vercel/turbo/pull/8692](https://github.com/vercel/turbo/pull/8692) - [@​LioRael](https://github.com/LioRael) made their first contribution in [https://github.com/vercel/turbo/pull/8741](https://github.com/vercel/turbo/pull/8741) - [@​mischnic](https://github.com/mischnic) made their first contribution in [https://github.com/vercel/turbo/pull/8767](https://github.com/vercel/turbo/pull/8767) **Full Changelog**: https://github.com/vercel/turbo/compare/v2.0.6...v2.0.7 ### [`v2.0.6`](https://github.com/vercel/turborepo/releases/tag/v2.0.6): Turborepo v2.0.6 [Compare Source](https://github.com/vercel/turborepo/compare/v2.0.5...v2.0.6) <!-- Release notes generated using configuration in .github/turborepo-release.yml at v2.0.6 --> #### What's Changed ##### Examples - More fix-ups for `kitchen-sink`. by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8590](https://github.com/vercel/turbo/pull/8590) - c2aa1 by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8592](https://github.com/vercel/turbo/pull/8592) - More kitchen-sink. by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8593](https://github.com/vercel/turbo/pull/8593) - Fixing kitchen-sink example. by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8600](https://github.com/vercel/turbo/pull/8600) - fix(turborepo): update package.json typo by [@​JannatinNaimXIII](https://github.com/JannatinNaimXIII) in [https://github.com/vercel/turbo/pull/8621](https://github.com/vercel/turbo/pull/8621) ##### Changelog - fix(pnpm): enable npmrc parsing for pnpm 9 by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8591](https://github.com/vercel/turbo/pull/8591) - chore(turbo): add debug logs for changes files when using a git range filter by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/8608](https://github.com/vercel/turbo/pull/8608) - chore(ui): disable tui as the default by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8631](https://github.com/vercel/turbo/pull/8631) - fix(ui): Use double arrow instead of spinner for active tasks. by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8632](https://github.com/vercel/turbo/pull/8632) #### New Contributors - [@​kettei-sproutty](https://github.com/kettei-sproutty) made their first contribution in [https://github.com/vercel/turbo/pull/8596](https://github.com/vercel/turbo/pull/8596) - [@​JannatinNaimXIII](https://github.com/JannatinNaimXIII) made their first contribution in [https://github.com/vercel/turbo/pull/8613](https://github.com/vercel/turbo/pull/8613) - [@​NamesMT](https://github.com/NamesMT) made their first contribution in [https://github.com/vercel/turbo/pull/8616](https://github.com/vercel/turbo/pull/8616) **Full Changelog**: https://github.com/vercel/turbo/compare/v2.0.5...v2.0.6 ### [`v2.0.5`](https://github.com/vercel/turborepo/releases/tag/v2.0.5): Turborepo v2.0.5 [Compare Source](https://github.com/vercel/turborepo/compare/v2.0.4...v2.0.5) <!-- Release notes generated using configuration in .github/turborepo-release.yml at v2.0.5 --> #### What's Changed ##### create-turbo - Clean up create-turbo logs. by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8516](https://github.com/vercel/turbo/pull/8516) ##### [@​turbo/codemod](https://github.com/turbo/codemod) - chore([@​turbo/types](https://github.com/turbo/types)): remove deprecated fields by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8531](https://github.com/vercel/turbo/pull/8531) - fix(codemod): avoid overwriting existing packageManager field by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8551](https://github.com/vercel/turbo/pull/8551) ##### Examples - chore(packages/ui turbo gen config.ts): Preventing the format of pack… by [@​moeyashi](https://github.com/moeyashi) in [https://github.com/vercel/turbo/pull/8033](https://github.com/vercel/turbo/pull/8033) - chore(examples): remove deprecated prettierrc option by [@​fucksophie](https://github.com/fucksophie) in [https://github.com/vercel/turbo/pull/8092](https://github.com/vercel/turbo/pull/8092) - Removed redundant [@​storybook/addon-docs](https://github.com/storybook/addon-docs) dev dependency by [@​NickE27](https://github.com/NickE27) in [https://github.com/vercel/turbo/pull/8184](https://github.com/vercel/turbo/pull/8184) - Remove Tailwind from basic. by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8515](https://github.com/vercel/turbo/pull/8515) - fix: package name has wrong spelling by [@​sacrosanctic](https://github.com/sacrosanctic) in [https://github.com/vercel/turbo/pull/8517](https://github.com/vercel/turbo/pull/8517) - chore: move react, react-dom from devDependency to dependency in several examples by [@​ghdtjgus76](https://github.com/ghdtjgus76) in [https://github.com/vercel/turbo/pull/8192](https://github.com/vercel/turbo/pull/8192) - Examples polish. by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8511](https://github.com/vercel/turbo/pull/8511) - Update lockfile for kitchen-sink. by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8579](https://github.com/vercel/turbo/pull/8579) ##### Changelog - fix: factor in root dependencies into ... filters by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8465](https://github.com/vercel/turbo/pull/8465) - Spruce up Remote Cache linking message. by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8494](https://github.com/vercel/turbo/pull/8494) - Fix outdated user listing. by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8526](https://github.com/vercel/turbo/pull/8526) - feat: GitLab VendorBehavior by [@​cymruu](https://github.com/cymruu) in [https://github.com/vercel/turbo/pull/8300](https://github.com/vercel/turbo/pull/8300) - Jetbrains passthroughs. by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8560](https://github.com/vercel/turbo/pull/8560) - fix(turborepo): benchmarks by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8569](https://github.com/vercel/turbo/pull/8569) - Light refactoring of TUI pane and instructions. by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8499](https://github.com/vercel/turbo/pull/8499) - feat(tui): output tasks with errors last by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8570](https://github.com/vercel/turbo/pull/8570) - fix(ui): wait until task output is fully rendered on stop by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8588](https://github.com/vercel/turbo/pull/8588) #### New Contributors - [@​moeyashi](https://github.com/moeyashi) made their first contribution in [https://github.com/vercel/turbo/pull/8033](https://github.com/vercel/turbo/pull/8033) - [@​fucksophie](https://github.com/fucksophie) made their first contribution in [https://github.com/vercel/turbo/pull/8092](https://github.com/vercel/turbo/pull/8092) - [@​NickE27](https://github.com/NickE27) made their first contribution in [https://github.com/vercel/turbo/pull/8184](https://github.com/vercel/turbo/pull/8184) - [@​dcodesdev](https://github.com/dcodesdev) made their first contribution in [https://github.com/vercel/turbo/pull/8315](https://github.com/vercel/turbo/pull/8315) - [@​sacrosanctic](https://github.com/sacrosanctic) made their first contribution in [https://github.com/vercel/turbo/pull/8517](https://github.com/vercel/turbo/pull/8517) - [@​iojcde](https://github.com/iojcde) made their first contribution in [https://github.com/vercel/turbo/pull/5328](https://github.com/vercel/turbo/pull/5328) **Full Changelog**: https://github.com/vercel/turbo/compare/v2.0.4...v2.0.5 ### [`v2.0.4`](https://github.com/vercel/turborepo/releases/tag/v2.0.4): Turborepo v2.0.4 [Compare Source](https://github.com/vercel/turborepo/compare/v2.0.3...v2.0.4) <!-- Release notes generated using configuration in .github/turborepo-release.yml at v2.0.4 --> #### What's Changed ##### create-turbo - Update `create-turbo` to use carat versions. by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8448](https://github.com/vercel/turbo/pull/8448) ##### [@​turbo/codemod](https://github.com/turbo/codemod) - chore: bump timeout for migration by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8463](https://github.com/vercel/turbo/pull/8463) - fix([@​turbo/codemode](https://github.com/turbo/codemode)): no-op when turbo.json already contains tasks key by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/8471](https://github.com/vercel/turbo/pull/8471) ##### Examples - Give examples carat versions. by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8382](https://github.com/vercel/turbo/pull/8382) - Fix apk order in example. by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8392](https://github.com/vercel/turbo/pull/8392) - Fix `eslint-config-turbo` configuration in examples. by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8405](https://github.com/vercel/turbo/pull/8405) - Remove root eslintrc from basic example. by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8423](https://github.com/vercel/turbo/pull/8423) - Consistent Node.js version in Changesets action. by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8441](https://github.com/vercel/turbo/pull/8441) - Remove global dep from basic example. by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8442](https://github.com/vercel/turbo/pull/8442) ##### Changelog - fix(filter): account for root internal dependencies in git based filter by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8364](https://github.com/vercel/turbo/pull/8364) - Warn instead of print when no locally installed version. by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8384](https://github.com/vercel/turbo/pull/8384) - Add CI to default passthroughs. by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8393](https://github.com/vercel/turbo/pull/8393) - feat(shim): invoke local turbo version via npx if not installed by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8385](https://github.com/vercel/turbo/pull/8385) - docs: update links to logs in turbo types by [@​boyum](https://github.com/boyum) in [https://github.com/vercel/turbo/pull/8403](https://github.com/vercel/turbo/pull/8403) - fix: added `LD_LIBRARY_PATH` to default forwarded env vars by [@​GauBen](https://github.com/GauBen) in [https://github.com/vercel/turbo/pull/8412](https://github.com/vercel/turbo/pull/8412) - chore(turborepo): remove unused code by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8428](https://github.com/vercel/turbo/pull/8428) - fix: disable panic handler in ci by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8436](https://github.com/vercel/turbo/pull/8436) - fix: remove inferring turbo version from package.json or turbo.json by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8437](https://github.com/vercel/turbo/pull/8437) - fix(turborepo): avoid starting ui on too small terminals by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8457](https://github.com/vercel/turbo/pull/8457) - chore(shim): make dynamic downloads opt in by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8458](https://github.com/vercel/turbo/pull/8458) - fix(shim): avoid panic if user has malformed lockfile by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8461](https://github.com/vercel/turbo/pull/8461) - fix(ui): pass through terminal env vars to appease chalk by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8468](https://github.com/vercel/turbo/pull/8468) #### New Contributors - [@​boyum](https://github.com/boyum) made their first contribution in [https://github.com/vercel/turbo/pull/8403](https://github.com/vercel/turbo/pull/8403) - [@​GauBen](https://github.com/GauBen) made their first contribution in [https://github.com/vercel/turbo/pull/8412](https://github.com/vercel/turbo/pull/8412) - [@​sethidden](https://github.com/sethidden) made their first contribution in [https://github.com/vercel/turbo/pull/8450](https://github.com/vercel/turbo/pull/8450) **Full Changelog**: https://github.com/vercel/turbo/compare/v2.0.3...v2.0.4 ### [`v2.0.3`](https://github.com/vercel/turborepo/releases/tag/v2.0.3): Turborepo v2.0.3 [Compare Source](https://github.com/vercel/turborepo/compare/v2.0.2...v2.0.3) <!-- Release notes generated using configuration in .github/turborepo-release.yml at v2.0.3 --> #### What's Changed ##### turbo-ignore - fix(turbo-ignore): infer correct version of turbo for project by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8363](https://github.com/vercel/turbo/pull/8363) ##### Changelog - feat: warn when no local turbo found by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8356](https://github.com/vercel/turbo/pull/8356) **Full Changelog**: https://github.com/vercel/turbo/compare/v2.0.2...v2.0.3 ### [`v2.0.2`](https://github.com/vercel/turborepo/releases/tag/v2.0.2): Turborepo v2.0.2 [Compare Source](https://github.com/vercel/turborepo/compare/v2.0.1...v2.0.2) <!-- Release notes generated using configuration in .github/turborepo-release.yml at v2.0.2 --> #### What's Changed ##### [@​turbo/codemod](https://github.com/turbo/codemod) - fix(turborepo): factor in negated globs for workspace detection in codemods by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8331](https://github.com/vercel/turbo/pull/8331) ##### Examples - Bump examples to 2.0.0. by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8284](https://github.com/vercel/turbo/pull/8284) ##### Changelog - feat(ui): respect CI and NO_COLOR as overrides for TUI by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8335](https://github.com/vercel/turbo/pull/8335) - fix(ui): no longer attempt to read from stdin if non-tty by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8333](https://github.com/vercel/turbo/pull/8333) - fix: correctly serialize ui values by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8338](https://github.com/vercel/turbo/pull/8338) - fix: add NODE_OPTIONS to default pass through env vars by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8353](https://github.com/vercel/turbo/pull/8353) - chore: add additional env vars to default pass through by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8359](https://github.com/vercel/turbo/pull/8359) - fix(ui): disable TUI if log order is specified by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8343](https://github.com/vercel/turbo/pull/8343) #### New Contributors - [@​dvoytenko](https://github.com/dvoytenko) made their first contribution in [https://github.com/vercel/turbo/pull/8334](https://github.com/vercel/turbo/pull/8334) **Full Changelog**: https://github.com/vercel/turbo/compare/v2.0.1...v2.0.2 ### [`v2.0.1`](https://github.com/vercel/turborepo/releases/tag/v2.0.1): Turborepo v2.0.1 [Compare Source](https://github.com/vercel/turborepo/compare/v2.0.0...v2.0.1) <!-- Release notes generated using configuration in .github/turborepo-release.yml at v2.0.1 --> **Full Changelog**: https://github.com/vercel/turbo/compare/v2.0.0...v2.0.1 ### [`v2.0.0`](https://github.com/vercel/turborepo/releases/tag/v2.0.0): Turborepo v2.0.0 [Compare Source](https://github.com/vercel/turborepo/compare/v1.13.4...v2.0.0) <!-- Release notes generated using configuration in .github/turborepo-release.yml at v2.0.0 --> #### What's Changed Upgrade guide: https://turbo.build/repo/docs/crafting-your-repository/upgrading ##### [@​turbo/codemod](https://github.com/turbo/codemod) - feat(codemod): add logic for major version bump by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8260](https://github.com/vercel/turbo/pull/8260) - feat(codemod): place tasks last in turbo.json rewrites by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8268](https://github.com/vercel/turbo/pull/8268) - fix(codemod): support jsonc when parsing root turbo.json by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8279](https://github.com/vercel/turbo/pull/8279) - fix(codemod): respect --dry flag by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8280](https://github.com/vercel/turbo/pull/8280) - feat: change values of "ui" in turbo.json by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8289](https://github.com/vercel/turbo/pull/8289) - fix(codemod): support jsonc when parsing root turbo.json by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8279](https://github.com/vercel/turbo/pull/8279) - feat(codemod): place tasks last in turbo.json rewrites by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8268](https://github.com/vercel/turbo/pull/8268) - feat(codemod): add logic for major version bump by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8260](https://github.com/vercel/turbo/pull/8260) - feat(codemod): add missing package names by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/8186](https://github.com/vercel/turbo/pull/8186) ##### Changelog ##### Breaking - chore: remove legacy filter flags by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8294](https://github.com/vercel/turbo/pull/8294)/ - chore(turborepo): adjust error message for pipeline by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8264](https://github.com/vercel/turbo/pull/8264) - chore(turbo)!: remove check for legacy turbo config in package.json by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/8023](https://github.com/vercel/turbo/pull/8023) - chore(turbo)! hard error on env vars in task and global dependencies by [@​mehulkar](https://github.com/mehulkar) in [#​8026](https://github.com/vercel/turborepo/issues/8026) - feat: require packageManager in package.json by [@​chris-olszewski](https://github.com/chris-olszewski) in [#​8017](https://github.com/vercel/turborepo/issues/8017) - feat(filter): no longer infer scope in filters by [@​chris-olszewski](https://github.com/chris-olszewski) in [#​8137](https://github.com/vercel/turborepo/issues/8137) - chore!(create-turbo): remove old pm arg by [@​tknickman](https://github.com/tknickman) in [#​8150](https://github.com/vercel/turborepo/issues/8150) - feat: error on empty package name by [@​chris-olszewski](https://github.com/chris-olszewski) [#​8152](https://github.com/vercel/turborepo/issues/8152) - feat(filter): error on invalid filters by [@​chris-olszewski](https://github.com/chris-olszewski) [#​8142](https://github.com/vercel/turborepo/issues/8142) - Move fs cache location. by [@​anthonyshew](https://github.com/anthonyshew) in [#​8126](https://github.com/vercel/turborepo/issues/8126) - refactor(turborepo): Rename outputMode to outputLogs in turbo.json by [@​NicholasLYang](https://github.com/NicholasLYang) in [#​8149](https://github.com/vercel/turborepo/issues/8149) - feat: --only now applies to package dependencies by [@​chris-olszewski](https://github.com/chris-olszewski) in [#​8163](https://github.com/vercel/turborepo/issues/8163) - Rename pipeline to tasks. by [@​anthonyshew](https://github.com/anthonyshew) in [#​8157](https://github.com/vercel/turborepo/issues/8157) - feat: add doublestar to exact dir paths by [@​chris-olszewski](https://github.com/chris-olszewski) in [#​8180](https://github.com/vercel/turborepo/issues/8180) - chore: remove globalDotEnv and dotEnv fields by [@​chris-olszewski](https://github.com/chris-olszewski) in [#​8181](https://github.com/vercel/turborepo/issues/8181) - chore: make env mode strict by default by [@​chris-olszewski](https://github.com/chris-olszewski) in [#​8182](https://github.com/vercel/turborepo/issues/8182) ##### Other - feat: allow for negative globs in globalDeps by [@​chris-olszewski](https://github.com/chris-olszewski) in [#​8190](https://github.com/vercel/turborepo/issues/8190) - chore: change turborepo licenses to MIT by [@​chris-olszewski](https://github.com/chris-olszewski) in [#​8197](https://github.com/vercel/turborepo/issues/8197) - feat: all dependencies of root package contribute to global hash by [@​chris-olszewski](https://github.com/chris-olszewski) in [#​8202](https://github.com/vercel/turborepo/issues/8202) - fix(turborepo): non-determinism with root internal deps hash. by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8277](https://github.com/vercel/turbo/pull/8277) - fix: update integration test to expect correct output by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8285](https://github.com/vercel/turbo/pull/8285) - chore: remove cpuprofile flag by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8282](https://github.com/vercel/turbo/pull/8282) - fix(ui): disable UI on all dry runs by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8269](https://github.com/vercel/turbo/pull/8269) - fix(turborepo): stderr log by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8267](https://github.com/vercel/turbo/pull/8267) - chore(turborepo): adjust error message for pipeline by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8264](https://github.com/vercel/turbo/pull/8264) - fix(ui): ensure prelude gets printed before ui starts by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8265](https://github.com/vercel/turbo/pull/8265) - chore([@​turbo/benchmark](https://github.com/turbo/benchmark)): fix lint warnings by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/8233](https://github.com/vercel/turbo/pull/8233) - chore(turborepo): Feature flagged off file hashing by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8229](https://github.com/vercel/turbo/pull/8229) - chore: downgrade curl to fix Windows rust tests by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8242](https://github.com/vercel/turbo/pull/8242) - fix(turborepo): Remove optional git locks by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8244](https://github.com/vercel/turbo/pull/8244) - fix(turborepo): Optional lock with env var by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8247](https://github.com/vercel/turbo/pull/8247) - add two retry strategies to allow requests to timeout gracefully by [@​arlyon](https://github.com/arlyon) in [https://github.com/vercel/turbo/pull/8080](https://github.com/vercel/turbo/pull/8080) - add support for upload speed / remaining in the cache upload step by [@​arlyon](https://github.com/arlyon) in [https://github.com/vercel/turbo/pull/8081](https://github.com/vercel/turbo/pull/8081) - chore: remove --ignore flag by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8201](https://github.com/vercel/turbo/pull/8201) - feat: factor engines into global cache key by [@​chris-olszewski](https://github.com/chris-olszewski) in [#​8173](https://github.com/vercel/turborepo/issues/8173) **Full Changelog**: https://github.com/vercel/turbo/compare/v1.13.4...v2.0.0 ### [`v1.13.4`](https://github.com/vercel/turborepo/releases/tag/v1.13.4): Turborepo v1.13.4 [Compare Source](https://github.com/vercel/turborepo/compare/v1.13.3...v1.13.4) <!-- Release notes generated using configuration in .github/turborepo-release.yml at v1.13.4 --> #### What's Changed ##### Docs - Update eslint-config package name. by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/8069](https://github.com/vercel/turbo/pull/8069) - chore(docs): add missing words by [@​jeremyadavis](https://github.com/jeremyadavis) in [https://github.com/vercel/turbo/pull/8067](https://github.com/vercel/turbo/pull/8067) - Fix typo in Turborepo task-graph documentation by [@​danisal](https://github.com/danisal) in [https://github.com/vercel/turbo/pull/8212](https://github.com/vercel/turbo/pull/8212) ##### turbo-ignore - feat(turbo-ignore): don’t fail on single package repos by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/8177](https://github.com/vercel/turbo/pull/8177) ##### [@​turbo/repository](https://github.com/turbo/repository) - chore: differentiate rust changes from building turbo by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8001](https://github.com/vercel/turbo/pull/8001) ##### Examples - fix(examples): lint docs by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/8049](https://github.com/vercel/turbo/pull/8049) - fix(example): Fix Prisma example by [@​caaatisgood](https://github.com/caaatisgood) in [https://github.com/vercel/turbo/pull/8046](https://github.com/vercel/turbo/pull/8046) - chore: move react from devDependency to dependency in design system starter template by [@​ghdtjgus76](https://github.com/ghdtjgus76) in [https://github.com/vercel/turbo/pull/8159](https://github.com/vercel/turbo/pull/8159) ##### Changelog - feat(Turborepo): Be explicit about which binary we failed to find by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/8050](https://github.com/vercel/turbo/pull/8050) - fix(ui): add carraige return after cache log messages by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8015](https://github.com/vercel/turbo/pull/8015) - fix(turborepo): Watch mode not responding to changes by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8057](https://github.com/vercel/turbo/pull/8057) - fix(Turborepo): Make package discovery async, and apply a debouncer by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/8058](https://github.com/vercel/turbo/pull/8058) - fix(Turborepo): Disable inputs support by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/8074](https://github.com/vercel/turbo/pull/8074) - feat(Turborepo): Add support for $TURBO_DEFAULT$ to file hash watcher by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/8086](https://github.com/vercel/turbo/pull/8086) - Remove async-trait from a few crates by [@​arlyon](https://github.com/arlyon) in [https://github.com/vercel/turbo/pull/8077](https://github.com/vercel/turbo/pull/8077) - feat(turborepo): Using file hashing for package watching by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8104](https://github.com/vercel/turbo/pull/8104) - add support for cache_timeout as well as timeout by [@​arlyon](https://github.com/arlyon) in [https://github.com/vercel/turbo/pull/8078](https://github.com/vercel/turbo/pull/8078) - yield a different warning when the cache upload times out by [@​arlyon](https://github.com/arlyon) in [https://github.com/vercel/turbo/pull/8079](https://github.com/vercel/turbo/pull/8079) - fix lockfile by [@​sokra](https://github.com/sokra) in [https://github.com/vercel/turbo/pull/8110](https://github.com/vercel/turbo/pull/8110) - fix(gen): isolate generator to `commonjs` by [@​wesleycoder](https://github.com/wesleycoder) in [https://github.com/vercel/turbo/pull/8109](https://github.com/vercel/turbo/pull/8109) - fix: properly propigate internal errors by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8113](https://github.com/vercel/turbo/pull/8113) - feat(ui): render ui to alternative screen by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8084](https://github.com/vercel/turbo/pull/8084) - fix(turborepo): Persistent tasks in watch mode by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8107](https://github.com/vercel/turbo/pull/8107) - fix(Turborepo): Fix as_inputs to include ! by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/8119](https://github.com/vercel/turbo/pull/8119) - fix(Turborepo): Handle new packages in lockfile comparisons by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/8127](https://github.com/vercel/turbo/pull/8127) - fix(ui): minor formatting by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8136](https://github.com/vercel/turbo/pull/8136) - feat(turborepo): new ui + watch mode by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/7962](https://github.com/vercel/turbo/pull/7962) - fix(turborepo): use transitive closure of filtered packages in watch mode by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8161](https://github.com/vercel/turbo/pull/8161) - add two retry strategies to allow requests to timeout gracefully by [@​arlyon](https://github.com/arlyon) in [https://github.com/vercel/turbo/pull/8080](https://github.com/vercel/turbo/pull/8080) - add support for upload speed / remaining in the cache upload step by [@​arlyon](https://github.com/arlyon) in [https://github.com/vercel/turbo/pull/8081](https://github.com/vercel/turbo/pull/8081) - chore([@​turbo/benchmark](https://github.com/turbo/benchmark)): fix lint warnings by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/8233](https://github.com/vercel/turbo/pull/8233) - chore(turborepo): Feature flagged off file hashing by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8229](https://github.com/vercel/turbo/pull/8229) - chore: downgrade curl to fix Windows rust tests by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/8242](https://github.com/vercel/turbo/pull/8242) - fix(turborepo): Remove optional git locks by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8244](https://github.com/vercel/turbo/pull/8244) - fix(turborepo): Optional lock with env var by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/8247](https://github.com/vercel/turbo/pull/8247) #### New Contributors - [@​caaatisgood](https://github.com/caaatisgood) made their first contribution in [https://github.com/vercel/turbo/pull/8046](https://github.com/vercel/turbo/pull/8046) - [@​jeremyadavis](https://github.com/jeremyadavis) made their first contribution in [https://github.com/vercel/turbo/pull/8067](https://togit </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View the [repository job log](https://developer.mend.io/github/dotkom/monoweb). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4yNi4xIiwidXBkYXRlZEluVmVyIjoiMzguMjYuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Description
TSIA
Testing Instructions
CI